InverseMatrix
TheInverseMatrix
function creates a new matrix that is the inverse of a specified matrix.
pascal Boolean InverseMatrix (MatrixRecord *m, MatrixRecord *im);
m
- Contains a pointer to the source matrix for the operation.
im
- Contains a pointer to a matrix structure that is to receive the new matrix. The
InverseMatrix
function updates this structure so that it contains a matrix that is the inverse of that specified by them
parameter.DESCRIPTION
TheInverseMatrix
function returns a Boolean value that indicates whether it could create an inverse matrix. If the function could create an inverse matrix, it sets this returned value totrue
. Otherwise, the function sets the returned value tofalse
.ERROR CODES
None